-
Notifications
You must be signed in to change notification settings - Fork 1
Add Item #9 - minimize boxing and unboxing #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Coverage summary from CodacySee diff coverage on Codacy
Coverage variation details
Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: Diff coverage details
Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: See your quality gate settings Change summary preferences🚀 Don’t miss a bit, follow what’s new on Codacy. Codacy stopped sending the deprecated coverage status on June 5th, 2024. Learn more |
…tionary to avoid duplicate diagnostics on the same element
Add analyzers to find cases when boxing occurs in source code
This catches some boxing behavior. There are implicit boxing and copy by value semantics at play when mixing value and reference types. There is more prescriptive guidance and opinions in the book, which is not caught by this implementation of the analyzer. An opinionated default and code fix will be implemented by another analyzer library.
Resolves BillWagner/EffectiveCSharpAnalyzers#9